home *** CD-ROM | disk | FTP | other *** search
- unit Ulbmptst;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, Ulbitmap;
-
- type
- TForm1 = class(TForm)
- UnlimitedBitmap1: TUnlimitedBitmap;
- procedure FormCreate(Sender: TObject);
- procedure FormPaint(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.FormCreate(Sender: TObject);
- begin
- UnlimitedBitmap1.Load_Bitmap_File;
- end;
-
- procedure TForm1.FormPaint(Sender: TObject);
- begin
- canvas.copyrect( rect( 0 , 0 , UnlimitedBitmap1.TheBMP.Width ,
- UnlimitedBitmap1.TheBMP.Height ) , UnlimitedBitmap1.TheBMP.Canvas ,
- rect( 0 , 0 , UnlimitedBitmap1.TheBMP.Width , UnlimitedBitmap1.TheBMP.Height ));
- end;
-
- end.
-